home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / vfprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  174 b   |  14 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "lib.h"
  4.  
  5.  
  6. int
  7. vfprintf(fp, fmt, args)
  8.     FILE *fp;
  9.     const char *fmt;
  10.     va_list args;
  11. {
  12.     return(_doprnt(fputc, fp, fmt, args));
  13. }
  14.